From ec80656941f426651cf3013ac1a8e5dfb043ad47 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Wed, 6 Aug 2008 11:38:42 +0100 Subject: [PATCH] ioemu-stubdom: fix initialization of vm_change_state_head That is actually a no-op since it just sets it to NULL again, but makes sense. Signed-off-by: Samuel Thibault --- tools/ioemu/vl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/ioemu/vl.c b/tools/ioemu/vl.c index 129e0d4475..9d526057e4 100644 --- a/tools/ioemu/vl.c +++ b/tools/ioemu/vl.c @@ -7136,8 +7136,10 @@ int main(int argc, char **argv) sigaddset(&set, aio_sig_num); sigprocmask(SIG_BLOCK, &set, NULL); } +#endif QEMU_LIST_INIT (&vm_change_state_head); +#ifndef CONFIG_STUBDOM #ifndef _WIN32 { struct sigaction act; -- 2.30.2